home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tiff / tif_next.c < prev    next >
C/C++ Source or Header  |  1995-06-21  |  4KB  |  139 lines

  1. /* $Header: /usr/people/sam/tiff/libtiff/RCS/tif_next.c,v 1.22 1994/09/17 23:22:37 sam Exp $ */
  2.  
  3. /*
  4.  * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994 Sam Leffler
  5.  * Copyright (c) 1991, 1992, 1993, 1994 Silicon Graphics, Inc.
  6.  *
  7.  * Permission to use, copy, modify, distribute, and sell this software and 
  8.  * its documentation for any purpose is hereby granted without fee, provided
  9.  * that (i) the above copyright notices and this permission notice appear in
  10.  * all copies of the software and related documentation, and (ii) the names of
  11.  * Sam Leffler and Silicon Graphics may not be used in any advertising or
  12.  * publicity relating to the software without the specific, prior written
  13.  * permission of Sam Leffler and Silicon Graphics.
  14.  * 
  15.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  16.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  17.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  18.  * 
  19.  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  20.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  21.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  22.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  23.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  24.  * OF THIS SOFTWARE.
  25.  */
  26.  
  27. /*
  28.  * TIFF Library.
  29.  *
  30.  * NeXT 2-bit Grey Scale Compression Algorithm Support
  31.  */
  32. #include "tiffiop.h"
  33.  
  34. #define SETPIXEL(op, v) {            \
  35.     switch (npixels++ & 3) {        \
  36.     case 0:    op[0]  = (v) << 6; break;    \
  37.     case 1:    op[0] |= (v) << 4; break;    \
  38.     case 2:    op[0] |= (v) << 2; break;    \
  39.     case 3:    *op++ |= (v);       break;    \
  40.     }                    \
  41. }
  42.  
  43. #define LITERALROW    0x00
  44. #define LITERALSPAN    0x40
  45. #define WHITE       ((1<<2)-1)
  46.  
  47. static int
  48. NeXTDecode(TIFF* tif, tidata_t buf, tsize_t occ, tsample_t s)
  49. {
  50.     register u_char *bp, *op;
  51.     register tsize_t cc;
  52.     register int n;
  53.     tidata_t row;
  54.     tsize_t scanline;
  55.  
  56.     /*
  57.      * Each scanline is assumed to start off as all
  58.      * white (we assume a PhotometricInterpretation
  59.      * of ``min-is-black'').
  60.      */
  61.     for (op = buf, cc = occ; cc-- > 0;)
  62.         *op++ = 0xff;
  63.  
  64.     bp = (u_char *)tif->tif_rawcp;
  65.     cc = tif->tif_rawcc;
  66.     scanline = tif->tif_scanlinesize;
  67.     for (row = buf; (long)occ > 0; occ -= scanline, row += scanline) {
  68.         n = *bp++, cc--;
  69.         switch (n) {
  70.         case LITERALROW:
  71.             /*
  72.              * The entire scanline is given as literal values.
  73.              */
  74.             if (cc < scanline)
  75.                 goto bad;
  76.             _TIFFmemcpy(row, bp, scanline);
  77.             bp += scanline;
  78.             cc -= scanline;
  79.             break;
  80.         case LITERALSPAN: {
  81.             int off;
  82.             /*
  83.              * The scanline has a literal span
  84.              * that begins at some offset.
  85.              */
  86.             off = (bp[0] * 256) + bp[1];
  87.             n = (bp[2] * 256) + bp[3];
  88.             if (cc < 4+n)
  89.                 goto bad;
  90.             _TIFFmemcpy(row+off, bp+4, n);
  91.             bp += 4+n;
  92.             cc -= 4+n;
  93.             break;
  94.         }
  95.         default: {
  96.             register int npixels = 0, grey;
  97.             u_long imagewidth = tif->tif_dir.td_imagewidth;
  98.  
  99.             /*
  100.              * The scanline is composed of a sequence
  101.              * of constant color ``runs''.  We shift
  102.              * into ``run mode'' and interpret bytes
  103.              * as codes of the form <color><npixels>
  104.              * until we've filled the scanline.
  105.              */
  106.             op = row;
  107.             for (;;) {
  108.                 grey = (n>>6) & 0x3;
  109.                 n &= 0x3f;
  110.                 while (n-- > 0)
  111.                     SETPIXEL(op, grey);
  112.                 if (npixels >= imagewidth)
  113.                     break;
  114.                 if (cc == 0)
  115.                     goto bad;
  116.                 n = *bp++, cc--;
  117.             }
  118.             break;
  119.         }
  120.         }
  121.     }
  122.     tif->tif_rawcp = (tidata_t) bp;
  123.     tif->tif_rawcc = cc;
  124.     return (1);
  125. bad:
  126.     TIFFError(tif->tif_name, "NeXTDecode: Not enough data for scanline %ld",
  127.         (long) tif->tif_row);
  128.     return (0);
  129. }
  130.  
  131. int
  132. TIFFInitNeXT(TIFF* tif)
  133. {
  134.     tif->tif_decoderow = NeXTDecode;
  135.     tif->tif_decodestrip = NeXTDecode;
  136.     tif->tif_decodetile = NeXTDecode;
  137.     return (1);
  138. }
  139.